home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Internet / NVU 0.50 for Windows / nvu-0.50-win32-installer-full.exe / {app} / chrome / comm.jar / content / communicator / openLocation.js < prev    next >
Encoding:
JavaScript  |  2004-03-10  |  5.5 KB  |  159 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Mozilla Communicator client code.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Netscape Communications Corporation.
  18.  * Portions created by the Initial Developer are Copyright (C) 1998
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Michael Lowe (michael.lowe@bigfoot.com)
  23.  *   Blake Ross (blaker@netscape.com)
  24.  *   Daniel Glazman (glazman@disruptive-innovations.com), on behalf of Lindows.com
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  28.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the NPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the NPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39.  
  40. var browser;
  41. var dialog = {};
  42. var pref = null;
  43. try {
  44.   pref = Components.classes["@mozilla.org/preferences-service;1"]
  45.                    .getService(Components.interfaces.nsIPrefBranch);
  46. } catch (ex) {
  47.   // not critical, remain silent
  48. }
  49.  
  50. function onLoad()
  51. {
  52.   dialog.input          = document.getElementById("dialog.input");
  53.   dialog.open           = document.documentElement.getButton("accept");
  54.   dialog.bundle         = document.getElementById("openLocationBundle");
  55.   dialog.openAppList    = document.getElementById("openAppList");
  56.  
  57.   if ("arguments" in window && window.arguments.length >= 1)
  58.     browser = window.arguments[0];
  59.    
  60.   // we are calling from Composer
  61.  
  62.   // Change string to make more sense for Composer
  63.   // dialog.openTopWindow.setAttribute("label", dialog.bundle.getString("existingNavigatorWindow"));
  64.  
  65.   // Find most recent browser window
  66.   var windowManager = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService();
  67.   var windowManagerInterface = windowManager.QueryInterface( Components.interfaces.nsIWindowMediator);
  68.   if (windowManagerInterface)
  69.     browser = windowManagerInterface.getMostRecentWindow( "navigator:browser" );
  70.  
  71.   // change OK button text to 'open'
  72.   dialog.open.label = dialog.bundle.getString("openButtonLabel");
  73.  
  74.   if (pref) {
  75.     try {
  76.       dialog.input.value = pref.getComplexValue("general.open_location.last_url",
  77.                                                 Components.interfaces.nsISupportsString).data;
  78.     }
  79.     catch(ex) {
  80.     }
  81.     if (dialog.input.value)
  82.       dialog.input.select(); // XXX should probably be done automatically
  83.   }
  84.  
  85.   doEnabling();
  86. }
  87.  
  88. function doEnabling()
  89. {
  90.     dialog.open.disabled = !dialog.input.value;
  91. }
  92.  
  93. function open()
  94. {
  95.   var url;
  96.   if (browser)
  97.     url = browser.getShortcutOrURI(dialog.input.value);
  98.   else
  99.     url = dialog.input.value;
  100.  
  101.   var openAppList = dialog.openAppList.value;
  102.   try {
  103.     // editPage is in editorApplicationOverlay.js 
  104.     // 3rd param tells editPage to use "delayedOpenWindow"
  105.     if ("editPage" in window.opener)
  106.       window.opener.editPage(url, window.opener, true, (openAppList == "newTab"));
  107.   }
  108.   catch(exception) {
  109.   }
  110.  
  111.   if (pref) {
  112.     var str = Components.classes["@mozilla.org/supports-string;1"]
  113.                         .createInstance(Components.interfaces.nsISupportsString);
  114.     str.data = dialog.input.value;
  115.     pref.setComplexValue("general.open_location.last_url",
  116.                          Components.interfaces.nsISupportsString, str);
  117.   }
  118.  
  119.   // Delay closing slightly to avoid timing bug on Linux.
  120.   window.close();
  121.   return false;
  122. }
  123.  
  124. function createInstance(contractid, iidName)
  125. {
  126.   var iid = Components.interfaces[iidName];
  127.   return Components.classes[contractid].createInstance(iid);
  128. }
  129.  
  130. const nsIFilePicker = Components.interfaces.nsIFilePicker;
  131. function onChooseFile()
  132. {
  133.   try {
  134.     var fp = Components.classes["@mozilla.org/filepicker;1"].createInstance(nsIFilePicker);
  135.     fp.init(window, dialog.bundle.getString("chooseFileDialogTitle"), nsIFilePicker.modeOpen);
  136.     // When loading into Composer, direct user to prefer HTML files and text files,
  137.     // so we call separately to control the order of the filter list
  138.     fp.appendFilters(nsIFilePicker.filterHTML);
  139.     fp.appendFilters(nsIFilePicker.filterHTMLTemplates);
  140.     fp.appendFilters(nsIFilePicker.filterText);
  141.     fp.appendFilters(nsIFilePicker.filterAll);
  142.  
  143.     if (fp.show() == nsIFilePicker.returnOK && fp.fileURL.spec && fp.fileURL.spec.length > 0)
  144.       dialog.input.value = fp.fileURL.spec;
  145.   }
  146.   catch(ex) {
  147.   }
  148.   doEnabling();
  149. }
  150.  
  151. function useUBHistoryItem(aMenuItem)
  152. {
  153.   var urlbar = document.getElementById("dialog.input");
  154.   urlbar.value = aMenuItem.getAttribute("label");
  155.   urlbar.focus();
  156.   doEnabling();
  157. }
  158.  
  159.